home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48hor1 / pbk.doc < prev    next >
Text File  |  1995-03-31  |  3KB  |  93 lines

  1. (Comp.sys.handhelds) Option: 
  2. Item: 2101 by TAINT020 at ysub.ysu.edu 
  3. Author: [Robert Noe] 
  4.   Subj: HP48-PhoneBook 
  5.   Date: Mon Feb 18 1991 
  6.  
  7. [Note: Requires DBLIB and TLLIB from Donnelly's ToolKit.  -jkh-] 
  8.  
  9. Here is my phone book management program.  Remember that it uses two of James 
  10. Donnelly's libraries from the Programmers Toolkit.  Below you will find my 
  11. attempt at documentation and following that the directory itself.  Hopefully 
  12. nobody will have any problems with this but if you do Ill be happy to answer 
  13. any questions.  I would also like to here any comments and suggestions. 
  14.  
  15.         Thanks.... 
  16. --- 
  17.             Bob Noe 
  18.                TAINT020@YSUB.YSU.EDU 
  19. "All the brightest boys, to play with the biggest toys, 
  20.  More than they bargined for" -- Rush 
  21.  
  22. --- 
  23.  
  24. To run just hit the softkey labled PHNE. 
  25.  
  26. Since you have a blank PHDAT (which follows the format for the other phone 
  27. program) you will be dropped directly into the input routine.  Just follow the 
  28. prompts.  One thing to note: the search routine is case sensitive so I enter in 
  29. all my text in upper case.  This really isn't a large problem since most of the 
  30. screens use the small font in which everything is upper case. 
  31.  
  32. Once you have provided one entry you will be presented with the NAMES list. 
  33. (In this case it will contain only one name).  This interface is provided by 
  34. the DBLIB and is quite nice.  I'll quickly go thru some of its functions as 
  35. they relate to my program. 
  36.  
  37. UP & DOWN arrows 
  38.    The up and down arrows scroll you up and down through the list. 
  39.    LEFT SHIFT UP and DOWN are page up and page down. 
  40.    RIGHT SHIFT UP and DOWN move you to the ends of the list. 
  41.  
  42. VISIT 
  43.    For entries that are longer than the display VISIT will display the entire 
  44.    entry (as well as expanding newline characters). 
  45.  
  46. EDIT 
  47.    Allows you to EDIT an entry. 
  48.  
  49. ALPHA 
  50.    The ALPHA key places you in search mode.  This mode allows you to search for 
  51.    an entry containing the string you specify. 
  52.  
  53. ON 
  54.    ON will exit the program. 
  55.  
  56. OFF 
  57.    OFF will shut the calculator off without leaving the DataBrowser. 
  58.  
  59. The menu keys.... 
  60.  
  61. SORT 
  62.    SORT sorts the list based upon what item is being examined. 
  63.    example.... 
  64.        If you are looking at a list of NAMES and hit sort everything 
  65.        gets sorted based on the name field. 
  66.  
  67. The next two keys change depending on what list is being viewed.  They serve to 
  68. switch between lists of NAMEs, ADDResses, and PHoNE numbers. 
  69.  
  70. ADD 
  71.    ADD allows you to input a new entry. 
  72.  
  73. DEL 
  74.    DEL deletes the current entry. 
  75.  
  76. QUIT 
  77.    QUIT quits PBK.  (leaving the stack unchanged) (I hope  :) :) ) 
  78.  
  79. The ENTER key switches to a DETAIL MODE.  (for lack of a better name.) 
  80.  
  81. In DETAIL MODE you are presented with one record at a time.  The 
  82. databrowser keys work as described as above. 
  83.  
  84. LIST 
  85.    LIST returns you to the main list (NAME,ADDR,PHNE) depending where the 
  86.    DataBrowser pointer is. 
  87.  
  88. NEXT and PREV 
  89.    NEXT and PREV scroll through the records one at a time. 
  90.  
  91. ADD, DEL, and QUIT function as described as above. 
  92. The ENTER key functions just like the LIST option in the MENU. 
  93.